home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib2 / v_02_08 / 2n08068a < prev    next >
Encoding:
Text File  |  1995-11-01  |  164 b   |  14 lines

  1. int find(const char *s)
  2.     {
  3. #ifdef DEBUG
  4.     fprintf(stderr, "entering find\n");
  5. #endif
  6.  
  7.     ...
  8.  
  9. #ifdef DEBUG
  10.     fprintf(stderr, "leaving find\n");
  11. #endif
  12.     }
  13.  
  14.